home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 August / DPPCPRO0805.ISO / Assets / Interface / Install.dxr / 00004_Intercept getURL.ls < prev    next >
Encoding:
Text File  |  2005-05-18  |  353 b   |  14 lines

  1. global rootWindow
  2.  
  3. on GetUrl me, theURL
  4.   _player.windowList[1].movie.launch(theURL)
  5. end
  6.  
  7. on resizeDialog newHeight
  8.   oldLeft = _player.windowList[2].rect[1]
  9.   oldTop = _player.windowList[2].rect[2]
  10.   oldRight = _player.windowList[2].rect[3]
  11.   newBottom = oldTop + newHeight
  12.   _player.windowList[2].rect = rect(oldLeft, oldTop, oldRight, newBottom)
  13. end
  14.